home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C++ für Kids
/
C++ for kids.iso
/
Buch
/
Raten2.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1998-12-18
|
1KB
|
39 lines
//---------------------------------------------------------------------------
#include <vcl\vcl.h>
#pragma hdrstop
#include "Raten2.h"
//---------------------------------------------------------------------------
#pragma resource "*.dfm"
const int Max = 12; // ein Dutzend ist genug
TForm1 *Form1;
int Eingabe, Zufall, Versuche;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button1Click(TObject *Sender)
{
Edit1->SetFocus ();
Eingabe = StrToInt (Edit1->Text);
Versuche++; // daher auch C++
if (Versuche <= Max)
Label2->Caption = IntToStr (Versuche) + ". Versuch:";
else
Label2->Caption = "Es reicht!";
if (Eingabe == Zufall) Label1->Caption = "Richtig geraten!";
if (Eingabe < Zufall) Label1->Caption = "Deine Zahl ist zu klein!";
if (Eingabe > Zufall) Label1->Caption = "Deine Zahl ist zu gro▀!";
}
//---------------------------------------------------------------------------
void __fastcall TForm1::FormCreate(TObject *Sender)
{
randomize ();
Zufall = random (1000) + 1;
Versuche = 1;
}
//---------------------------------------------------------------------------